home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / dosutils / tsbat50.zip / LC.BAT < prev    next >
DOS Batch File  |  1991-12-06  |  580b  |  29 lines

  1. @echo off
  2. echo ┌───────────────────────────────────────────────────┐
  3. echo │ Count the number of lines in the given TEXT file  │
  4. echo │ By Prof. Timo Salmi, ts@chyde.uwasa.fi, 6-Dec-91  │
  5. echo └───────────────────────────────────────────────────┘
  6.  
  7. rem If no parameters then give the instructions
  8. if "%1"=="" goto _help
  9.  
  10. rem Check that the file exists
  11. if not exist %1 goto _nofind
  12.  
  13. rem Count the lines
  14. find /v /c "2Ω4$fD÷h38╙" %1
  15. goto _out
  16.  
  17. :_help
  18. echo.
  19. echo Usage: LC FileName
  20. goto _out
  21.  
  22. :_nofind
  23. echo.
  24. echo File %1 not found
  25. goto _out
  26.  
  27. :_out
  28. echo on
  29.